home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-19 / gplot386.zip / MAKEFILE < prev    next >
Text File  |  1992-07-19  |  641b  |  33 lines

  1. # Makefile for gnuplot LaTeX tutorial
  2. # To make the manual from scratch, we run $(LaTeX) two times
  3. all: tutorial.dvi done
  4.  
  5. LaTeX=latex3.bat
  6.  
  7. done:
  8.     $(LaTeX) tutorial
  9.     echo > done
  10.  
  11. # To touch it up after changes:
  12. remake: tutorial.dvi
  13.  
  14. # Always runs $(LaTeX), e.g., to get labels right
  15. force: 
  16.     $(LaTeX) tutorial
  17.  
  18. tutorial.dvi: eg1.tex eg2.tex eg3.tex eg4.tex eg5.tex eg6.tex linepoint.tex \
  19.     tutorial.tex header.tex
  20.     $(LaTeX) tutorial
  21.     rm -f done
  22.  
  23. .SUFFIXES: .tex .plt
  24.  
  25. .plt.tex:
  26.     @gnuplot.exe $<
  27.  
  28. clean:
  29.     rm -f *~ *.log eg?.tex linepoint.tex
  30.  
  31. spotless:
  32.     rm -f *~ *.log *.aux *.dvi eg?.tex linepoint.tex done
  33.